home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / include / scribus-ng / patterndialog.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-06-10  |  2.7 KB  |  66 lines

  1. /*
  2. For general Scribus (>=1.3.2) copyright and licensing information please refer
  3. to the COPYING file provided with the program. Following this notice may exist
  4. a copyright and/or license notice that predates the release of Scribus 1.3.2
  5. for which a new license (GPL+exception) is in place.
  6. */
  7. /***************************************************************************
  8. *   Copyright (C) 2006 by Franz Schmid                                   *
  9. *   franz.schmid@altmuehlnet.de                                                   *
  10. *                                                                         *
  11. *   This program is free software; you can redistribute it and/or modify  *
  12. *   it under the terms of the GNU General Public License as published by  *
  13. *   the Free Software Foundation; either version 2 of the License, or     *
  14. *   (at your option) any later version.                                   *
  15. *                                                                         *
  16. *   This program is distributed in the hope that it will be useful,       *
  17. *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
  18. *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
  19. *   GNU General Public License for more details.                          *
  20. *                                                                         *
  21. *   You should have received a copy of the GNU General Public License     *
  22. *   along with this program; if not, write to the                         *
  23. *   Free Software Foundation, Inc.,                                       *
  24. *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
  25. ***************************************************************************/
  26.  
  27. #ifndef PATTERNDIALOG_H
  28. #define PATTERNDIALOG_H
  29.  
  30. #include <QMap>
  31. #include <QString>
  32. #include <QDialog>
  33. #include <QListWidgetItem>
  34. #include "ui_patterndialog.h"
  35. #include "scribusapi.h"
  36. #include "scribusdoc.h"
  37. #include "scribus.h"
  38. #include "scpattern.h"
  39.  
  40. class SCRIBUS_API PatternDialog : public QDialog, Ui::PatternDialog
  41. {
  42.     Q_OBJECT
  43.  
  44.     public:
  45.         PatternDialog(QWidget* parent, QMap<QString, ScPattern> *docPatterns, ScribusDoc *doc, ScribusMainWindow* scMW);
  46.         ~PatternDialog() {};
  47.         void updatePatternList();
  48.         void loadVectors(QString data);
  49.         QStringList getUsedPatternsHelper(QString pattern, QStringList &results);
  50.         ScribusDoc *m_doc;
  51.         ScribusMainWindow *mainWin;
  52.         QMap<QString, ScPattern> dialogPatterns;
  53.         QMap<QString,QString> replaceMap;
  54.         QMap<QString,QString> origNames;
  55.         QStringList origPatterns;
  56.     public slots:
  57.         void renamePattern();
  58.         void loadPatternDir();
  59.         void loadPattern();
  60.         void patternSelected(QListWidgetItem* it);
  61.         void removeAllPatterns();
  62.         void removePattern();
  63. };
  64.  
  65. #endif
  66.